home *** CD-ROM | disk | FTP | other *** search
/ Especial Multimedia / Especial Multimedia.iso / Multimed / Prg / IMAGELIB.ZIP / MIMAGE.ZIP / BLOB.DPR < prev    next >
Text File  |  1995-07-12  |  435b  |  19 lines

  1. program Blob;
  2.  
  3. uses
  4.   Forms,
  5.   Ublob in 'UBLOB.PAS' {Form1},
  6.   U_p_size in 'U_P_SIZE.PAS' {Printersize},
  7.   Ufullscr in 'UFULLSCR.PAS' {FullSlide},
  8.   Uabout in 'UABOUT.PAS' {AboutBox};
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.CreateForm(TPrintersize, Printersize);
  15.   Application.CreateForm(TFullSlide, FullSlide);
  16.   Application.CreateForm(TAboutBox, AboutBox);
  17.   Application.Run;
  18. end.
  19.